home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming a Multiplayer FPS in DirectX
/
Programming a Multiplayer FPS in DirectX (Companion CD).iso
/
Paint Shop Pro
/
PSP900enTR.exe
/
Data1.cab
/
_4D25C18BB8D542208F5E05EBF3126DC8
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2004-08-16
|
430 b
|
15 lines
"""Backward-compatibility version of TERMIOS; export constants exported by
termios, and issue a deprecation warning.
"""
import warnings
warnings.warn("the TERMIOS module is deprecated; please use termios",
DeprecationWarning)
# Export the constants known to the termios module:
from termios import *
# and *only* the constants:
__all__ = [s for s in dir() if s[0] in "ABCDEFGHIJKLMNOPQRSTUVWXYZ"]